body {
    background-color: antiquewhite;
    
}
* {
     margin: 0;
     padding: 0;
}
nav ul {
    display: flex;
    list-style-type: none;
    height: 65px;
    background-color:black;
    color: white;
    align-items: center;
}

nav ul li {
    padding: 0 12px;
}

.brand img {
    width: 54px;
    padding: 0 12px;
}

.brand {
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size: 1.3rem;
}

.container {
    min-height: 72vh;
    background-color: black;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    margin: 23px auto;
    width: 70%;
    border-radius:10px;
    padding: 30px;
    background-image: url('bg.jpg') ;
    background-repeat: no-repeat;
}
.bottom {
    position: sticky;
    height: 80px;
    background-color:black;
    bottom: 0;
    color: white;
    display: flex;
    align-items:center;
    justify-content: center;
    flex-direction: column;
    
}
#myprogressbar {
    width: 80vw;
    cursor: pointer;
}
.icons{
    margin-top:15px;
}
.icons i {
    cursor:pointer;
}

.songitemcontainer {
    margin-top:  75px;
}
.songitem{
    height: 50px;
    display: flex;
    background-color: white;
    color: black;
    width : 80%;
    margin: 12px 0;
    justify-content: space-around;
    align-items: center;
    border-radius: 34px;
}

.songitem img {
    width: 44px;
    margin:0 2;
    border-radius:34px;
}
.time{
    margin: 0 23px;
}

.time i {
    cursor:pointer;
}

.songinfo {
    position: absolute;
    left: 10vw;
    font-family: cursive;
    
}
.songinfo img{
    opacity: 0;
    transition: opacity 0.4s ease-in;
    /* in this element we can stop my audio bar */
}